home *** CD-ROM | disk | FTP | other *** search
- <%@LANGUAGE="VBSCRIPT"%>
- <!-- #include file="connex.asp" -->
- <%
- set rsConfig = Server.CreateObject("ADODB.Recordset")
- rsConfig.ActiveConnection = connex
- rsConfig.Source = "SELECT * FROM CONFIG"
- rsConfig.CursorType = 0
- rsConfig.CursorLocation = 2
- rsConfig.LockType = 3
- rsConfig.Open()
- rsConfig_numRows = 0
- HOME=rsConfig.Fields.Item("HOME_PAGE").Value
- Response.Redirect(HOME)
- rsConfig.Close()
- %>